HermiteSurface.Create
Description:
Create a non-periodic Hermite surface using a net of 3D points as input.
Create a non-periodic Hermite surface using a net of 3D points as input.
Remarks:
Points form a net of nU * nV 3D points. Suitable defaults will be used for other surface parameters. See other Create() functions if greater control over input is desired.
Points form a net of nU * nV 3D points. Suitable defaults will be used for other surface parameters. See other Create() functions if greater control over input is desired.
Overloads (2):
public static HermiteSurface Create(
int nU,
int nV,
IList<XYZ> points
)
-
Int32nUNumber of points in U direction.
-
Int32nVNumber of points in V direction.
-
IList<XYZ>pointsArray of points. Must contain nU*nV points.
-
A non-optional argument was null
-
Thrown when the input arguments are inconsistent. The most common case is incorrect number of items in one of the lists.